98e0101196eacbf71ed13de0bd10c97f1ee7361d,src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowReleaseFinishMojo.java,GitFlowReleaseFinishMojo,execute,#,42
Before Change
"updating poms for next development version");
// git branch -d release/...
executeGitCommand("branch", "-d",
gitFlowConfig.getReleaseBranchPrefix() + releaseVersion);
} catch (CommandLineException e) {
e.printStackTrace();
}
After Change
executeGitCommand("commit", "-a", "-m",
"updating poms for next development version");
if (!keepBranch) {
// git branch -d release/...
executeGitCommand("branch", "-d",
gitFlowConfig.getReleaseBranchPrefix() + releaseVersion);
}
} catch (CommandLineException e) {
e.printStackTrace();